home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / CC_C / H001C.ZIP / DJGPP3.ZIP / EMU387 / E52.CC < prev    next >
C/C++ Source or Header  |  1991-04-28  |  234b  |  18 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_52()
  5. {
  6.   if (modrm > 0277)
  7.   {
  8.     r_mov(st(), st(modrm&7));
  9.   }
  10.   else
  11.   {
  12.     // fst m64real
  13.     if (empty())
  14.       return;
  15.     r_mov(st(), (double *)get_modrm());
  16.   }
  17. }
  18.